home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / mac / developm / source / ncsat.cpt / Telnet2.5 final / vs / vsinterf.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-14  |  1.3 KB  |  129 lines

  1. extern int VSsetrgn
  2.   (
  3.     int w,
  4.     int x1,
  5.     int y1,
  6.     int x2,
  7.     int y2
  8.   );
  9.  
  10. extern int VSscrolforward
  11.   (
  12.     int w,
  13.     int n
  14.   );
  15.  
  16. extern int VSscrolback
  17.   (
  18.     int w,
  19.     int in
  20.   );
  21.  
  22. extern void VSscrolright
  23.   (
  24.     int w,
  25.     int n
  26.   );
  27.  
  28. extern void VSscrolleft
  29.   (
  30.     int w,
  31.     int n
  32.   );
  33.  
  34. extern int VSredraw
  35.   (
  36.     int w,
  37.     int x1,
  38.     int y1,
  39.     int x2,
  40.     int y2
  41.   );
  42.  
  43. extern int VSgetlines
  44.   (
  45.     int w
  46.   );
  47.  
  48. extern int VSmaxwidth
  49.   (
  50.     int w
  51.   );
  52.  
  53. extern int VSgetrgn
  54.   (
  55.     int w,
  56.     int *x1,
  57.     int *y1,
  58.     int *x2,
  59.     int *y2
  60.   );
  61.  
  62. extern int VSnewscreen
  63.   (
  64.     int maxlines,
  65.     int screensave,
  66.     int maxwid,
  67.     int IDC,        /* NCSA 2.5 */
  68.     int forcesave    /* NCSA 2.5 */
  69.   );
  70.  
  71. extern int VSsetlines
  72.   (
  73.     int w,
  74.     int lines
  75.   );
  76.  
  77. extern int VSwrite
  78.   (
  79.     int w,
  80.     char *ptr,
  81.     int len
  82.   );
  83.  
  84. extern void VSdetach
  85.   (
  86.     int w
  87.   );
  88.  
  89. extern void VSpossend
  90.   (
  91.     int w,
  92.     int x,
  93.     int y,
  94.     int echo
  95.   );
  96.  
  97. extern int VSscrolcontrol
  98.   (
  99.     int w,
  100.     int scrolon,
  101.     int offtop
  102.   );
  103.  
  104. extern int VSreset
  105.   (
  106.     int w
  107.   );
  108.  
  109. extern int VSinit
  110.   (
  111.     int max
  112.   );
  113.  
  114. extern char VSkbsend
  115.   (
  116.     int w,
  117.     unsigned char k,
  118.     int echo
  119.   );
  120.  
  121. extern int VSiscapturing(int w);                /* BYU 2.4.18 */
  122.  
  123. extern int VSopencapture(int scrn_num, int w);    /* BYU 2.4.18 */
  124.  
  125. extern void VSclosecapture(int w);                /* BYU 2.4.18 */
  126.  
  127. extern void VScapture(unsigned char *ptr, int len);    /* BYU 2.4.18 */
  128.  
  129.